/* ###### General Styling */

@import url('https://fonts.googleapis.com/css2?family=Edu+TAS+Beginner:wght@400;500&family=Gabarito:wght@400;500;600;700&family=Poppins:wght@400;500;600&display=swap');

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    /* font-family: 'Poppins', sans-serif; */
    font-family: 'Gabarito', sans-serif;
    letter-spacing: 0.5px !important;
}

.stylish {
    font-family: 'Edu TAS Beginner', cursive;
}

body {
    background-color: #f5f8fa;
}

html {
    scroll-behavior: smooth;
}

/* width */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f5f8fa;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #717173;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #3a3845;
}

animat
::selection {
    color: white;
    background-color: #2baffc;
}

.color-main {
    color: #2baffc !important;
}

.color-second {
    color: #3a3845 !important;
}

.color-third {
    color: #717173 !important;
}

.bg-main {
    background-color: #2baffc !important;
}

.bg-second {
    background-color: #3a3845 !important;
}

.bg-third {
    background-color: #717173 !important;
}

.btn-custom {
    background-color: #2baffc !important;
    color: white !important;
    font-weight: bold;
    border: 1px solid #2baffc !important;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    text-transform: uppercase;
}

.btn-custom:hover {
    background-color: #2baffc !important;
    color: white !important;
    font-weight: bold;
    border: 1px solid #2baffc !important;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.4);
}

.btn-custom-2 {
    background-color: transparent !important;
    color: #3a3845 !important;
    font-weight: bold;
    border: 1px solid #3a3845 !important;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    text-transform: uppercase;
}

.btn-custom-2:hover {
    background-color: transparent !important;
    color: #3a3845 !important;
    font-weight: bold;
    border: 1px solid #3a3845 !important;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.4);
}

i {
    color: #2baffc;
    font-size: 18px;
}

i:hover {
    cursor: pointer;
    /* animation: heartbeat 1s ease-in-out infinite; */
}


.shadow-custom {
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

/* Input Fields Styling */
input,
textarea,
select {
    box-shadow: none !important;
    border-radius: 10px !important;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.15) !important;
}

input:focus,
textarea:focus,
select:focus,
form[type="file"]:focus {
    box-shadow: none !important;
    border-color: #2baffc !important;
}

.required-input::after {
    content: ' *';
    color: red;

}

/* #############################  Navigation PAGE ############################ */
.nav-link {
    color: #3a3845 !important;
    font-weight: 500;
    position: relative !important;
    transition: 0.3s ease-in-out;
}

.nav-link:hover {
    color: #2baffc !important;
    margin-top: -3px;
}

.active {
    color: #2baffc !important;
}

.social-icon {
    width: 33px;
    height: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    margin: 0px 5px;
}

/*
.nav-link::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 2px;
    border-radius: 10px;
    background-color: #2baffc;
    transform: scaleX(0);

    transition: 0.3s ease-in-out;
}

.nav-link:hover::after {
    transform: scaleX(1);
}
.active.nav-link::after {
    transform: scaleX(1);
} */


/* #############################  HOME PAGE ############################ */
.moving-img {
    animation: moveUpDown 3s linear infinite;
    filter: drop-shadow(2px 5px 2px rgba(0, 0, 0, 0.3));
}

@keyframes moveUpDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.home-section {
    margin-top: 80px;

}
#home-hero-section{
    width: 100%;
    height: fit-content;
    padding: 12px !important;
    position: relative;
    background-image: linear-gradient(180deg,rgba(0,0,0,0.2),rgba(0,0,0,0.9));

}
.home-hero-bg-image{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -100;
    object-fit: cover;
    object-position: center;
}
.hero-link-div{
    background-color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.hero-link-div:hover{
    transform: scale(0.9);
    transition: all 0.4s;
}

.see-more-btn {
    color: #3a3845;
    text-decoration: none;
}

.see-more-btn:hover {
    color: #2baffc;
    text-decoration: underline;
}

@media screen and (min-width: 1200px) {
    #schedule-image {
        max-width: 80%;
    }
}

/* #############################  Admin Panel ############################ */

.brand h1 {
    font-weight: bold;
}

.brand {
    display: inline-flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

/* For breadcrumbs */
.breadcrumb-item:hover {
    color: #2baffc;
    transition: all 0.3s ease-in-out;
}

.breadcrumb-item::before {
    color: #2baffc !important;
}

/* For Img in Show Blade file*/
.img-container {
    overflow: hidden !important;
}




/* For Img in index Blade file of cruds */
.img-div {
    overflow: hidden !important;
}

.img-div img {
    height: 50px !important;
    width: 50px !important;
    object-position: center !important;
    object-fit: cover !important;
}

.user-crud-image {
    height: 50px !important;
    width: 50px !important;
    object-position: center !important;
    object-fit: cover !important;
}

.course-cover-image {
    height: 50px !important;
    width: 50px !important;
    object-position: center !important;
    object-fit: cover !important;
}

.course-img-container {
    overflow: hidden;
}

.course-img-container img {
    height: 100% !important;
    width: 95% !important;
    object-position: center !important;
    object-fit: cover !important;
}


/* ################## Course Card ##################*/
.course-card {
    border-radius: 10px !important;
    /* box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2); */
    transition: all ease-in-out 0.3s;

}

.course-card:hover {
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.course-container {
    overflow: hidden !important;
}

.course-img {
    border-top-right-radius: 10px !important;
    border-top-left-radius: 10px !important;
}

.course-name:hover {
    color: #2baffc !important;
    transition: all 0.3s ease-in-out;
}


/* ################## About ##################*/
.about-value {
    cursor: pointer;
    padding: 15px !important;
    transition: all 0.3s ease-in-out !important;
}


.about-value:hover {
    background-color: #2baffc !important;
    margin-top: -5px !important;
}

.about-value:hover p,
.about-value:hover h3 {
    color: white !important;
}

/* ################## Success Story ##################*/
.success-story-image {
    cursor: pointer;
}

.success-story-image:hover {
    transform: scale(.8) rotate(-10deg);
    border-radius: 20px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s;

}

.full-image-container {
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
}

.figure {
    max-width: 800px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#image-caption {
    width: 100%;
    padding: 5px;
    background-color: #f5f8fa;
    box-sizing: border-box;
    text-align: center;
    word-break: break-all;
    margin-top: 0;
    color: #3a3845;
}

.full-image-container #close-image {
    position: absolute;
    top: 4%;
    right: 5%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

.full-image-container #next-image {
    position: absolute;
    right: 0;
    height: 60px;
    width: 60px;
    text-align: center;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

.full-image-container #previous-image {
    position: absolute;
    left: 0;
    height: 60px;
    width: 60px;
    text-align: center;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

.show_on_scroll {
    position: fixed;
    right: 20px;
    bottom: 32px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-up-btn {
    width: 50px;
    height: 50px;
    background-color: #2baffc;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.whatsapp-btn {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.page-up-btn.active{
    display: flex;
}
.whatsapp-btn.active{
    display: flex;
}



.event-image-container {
    overflow: hidden;
}

.event-image {
    height: 300px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.carousel-inner {
    padding: 1em;
}

.card {
    margin: 0 0.5em;
    box-shadow: 2px 6px 8px 0 rgba(22, 22, 26, 0.18);
    border: none;
}

.carousel-control-prev,
.carousel-control-next {
    background-color: #e1e1e1;
    width: 6vh;
    height: 6vh;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

@media (min-width: 768px) {
    .carousel-item {
        margin-right: 0;
        flex: 0 0 33.333333%;
        display: block;
    }

    .carousel-inner {
        display: flex;
    }
}

.card .img-wrapper {
    max-width: 100%;
    height: 13em;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card img {
    max-height: 100%;
}

@media (max-width: 767px) {
    .card .img-wrapper {
        height: 17em;
    }
}
/* Preview Image input Tags */
.image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.image-preview {
    width: auto;
    height: 150px;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 10px;
}
.heartbeat {
    animation: heartbeat 3s ease-in-out infinite;
}

@keyframes heartbeat {
    0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
